home *** CD-ROM | disk | FTP | other *** search
/ Inventor Labs: Transportation / InventorLabs - Transportation.iso / pc / builders / media / netacess / url41.dir / 00011_Script_11 < prev    next >
Text File  |  1996-08-15  |  393b  |  16 lines

  1. on enterFrame
  2.   global TheWeb
  3.   
  4.   --
  5.   -- Use this handler to launch on a windows machine
  6.   -- when the user has installed any system other than AOL
  7.   --
  8.   
  9.   if objectP(TheWeb) then
  10.     
  11.     set WebError = TheWeb(mOpenURL,"http://www.hminet.com","","")
  12.     if WebError <> 0 then
  13.       set the text of cast "ErrorReport" to TheWeb(mGetWebError,WebError)
  14.     end if
  15.   end if
  16. end